ComponentOne Data Source for Entity Framework
C1.LiveLinq Namespace / LiveViewExtensions Class / AsLive Method / AsLive<T>(BindingList<T>) Method
The type of the elements in the view.
The System.ComponentModel.BindingList`1 data source to expose as a view.

In This Topic
    AsLive<T>(BindingList<T>) Method
    In This Topic
    A typed specialization of the AsLive<T>(IBindingList) method.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function AsLive(Of T)( _
       ByVal source As System.ComponentModel.BindingList(Of T) _
    ) As View(Of T)
    public static View<T> AsLive<T>( 
       System.ComponentModel.BindingList<T> source
    )

    Parameters

    source
    The System.ComponentModel.BindingList`1 data source to expose as a view.

    Type Parameters

    T
    The type of the elements in the view.

    Return Value

    A view that contains the same elements as the System.ComponentModel.BindingList`1.
    See Also